home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
C++
/
Frameworks
/
Sprocket Framework DR2
/
Sprocket Starter
/
SprocketStarter Code
/
SprocketStarterHeaders.pch
< prev
next >
Wrap
Text File
|
1996-06-15
|
2KB
|
96 lines
/*
File: SprocketStarterHeaders.pch
Project: Sample code for Sprocket Framework 1.1 (DR2), released 6/15/96
Contains: Useful include files to speed up development
To Do: Whatever your heart desires
Sprocket Major Contributors:
----------------------------
Dave Falkenburg, producer of Sprocket 1.0
Bill Hayden, producer of Sprocket 1.1
Steve Sisak, producer of the upcoming Sprocket 2.0
Pete Alexander Steve Falkenburg Randy Thelen
Eric Berdahl Nitin Ganatra Chris K. Thomas
Marshall Clow Dave Hershey Leonard Rosenthal
Tim Craycroft Dave Mark Dean Yu
David denBoer Gary Powell
Cameron Esfahani Jon Summers Apple Computer, Inc.
Comments, Additions, or Corrections:
------------------------------------
Bill Hayden, Nikol Software <nikol@codewell.com>
*/
#if __POWERPC__
#pragma precompile_target "SprocketStarterHeadersPPC"
#elif __CFM68K__
#pragma precompile_target "SprocketStarterHeadersCFM68K"
#else
#pragma precompile_target "SprocketStarterHeaders68K"
#endif
#include "BuildConditionals.h"
#include <ConditionalMacros.h>
#ifndef UNIVERSAL_INTERFACES_VERSION
#error You must use the Universal Headers 2.1 or later, and version 3.0 or later is recommended
#endif
#include <Types.h>
#include <Events.h>
#include <Windows.h>
#include <Dialogs.h>
#include <LowMem.h>
#include <Folders.h>
#include <Fonts.h>
#include <Resources.h>
#include <Errors.h>
#include <TextUtils.h>
#include <Processes.h>
#include <Sound.h>
/*
// Handy for seeing exactly what options you are getting:
#if (FOR_SYSTEM7_ONLY)
#error Compiling FOR_SYSTEM7_ONLY
#endif
#if (FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED)
#error Compiling FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED
#endif
#if (FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE)
#error Compiling FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE
#endif
#if (FOR_SYSTEM7_AND_SYSTEM8_PREEMPTIVE)
#error Compiling FOR_SYSTEM7_AND_SYSTEM8_PREEMPTIVE
#endif
#if (FOR_SYSTEM8_COOPERATIVE)
#error Compiling FOR_SYSTEM8_COOPERATIVE
#endif
#if (FOR_SYSTEM8_PREEMPTIVE)
#error Compiling FOR_SYSTEM8_PREEMPTIVE
#endif
*/
// Very temporary hack, until they fix this in the Universal Headers 3.0d3
#ifndef gestaltSpeechRecognitionVersion
enum {
gestaltSpeechRecognitionVersion = 'srtb'
};
#endif